←Select platform

GetRowColumn(Int32,Int32,WriteOnlyArray<Byte>,Int32,Int32) Method

Summary

Accepts a column offset to retrieve data from an image and place it in a buffer.

Syntax

C#
VB
WinRT C#
C++
public int GetRowColumn(  
   int row, 
   int column, 
   WriteOnlyArray<byte> buffer, 
   int bufferIndex, 
   int bufferCount 
) 
Public Overloads Function GetRowColumn( _ 
   ByVal row As Integer, _ 
   ByVal column As Integer, _ 
   ByVal buffer As WriteOnlyArray(Of Byte), _ 
   ByVal bufferIndex As Integer, _ 
   ByVal bufferCount As Integer _ 
) As Integer 
public int GetRowColumn(  
   int row, 
   int column, 
   WriteOnlyArray<byte> buffer, 
   int bufferIndex, 
   int bufferCount 
) 
 function Leadtools.RasterImage.GetRowColumn(Int32,Int32,WriteOnlyArray{Byte},Int32,Int32)(  
   row , 
   column , 
   buffer , 
   bufferIndex , 
   bufferCount  
) 
public: 
int GetRowColumn(  
   int row, 
   int column, 
   WriteOnlyArray<byte>^ buffer, 
   int bufferIndex, 
   int bufferCount 
)  

Parameters

row
The number of the row to retrieve. The first row is 0, and the last row is 1 less than the image height.

column
The column offset within the row to retrieve. The first column offset is 0, and the last column offset is 1 less than the image width

buffer
Buffer to hold the image data that this method gets. The buffer will be filled with uncompressed data.

bufferIndex
0-based index into the output buffer. This is the start location of output data.

bufferCount
The number of bytes to retrieve. Consider the bits per pixel, and avoid specifying a number that goes past the end of the row.

For a 1-bit image, each byte represents 8 pixels. For a 4-bit image, each byte represents 2 pixels. For an 8-bit image, each byte represents 1 pixel. For a 16-bit image, every 2 bytes represents one pixel. For 24-bit images, every three bytes represents one pixel. For a 32-bit image, every four bytes represents one pixel. For 48-bit images, every six bytes represents one pixel. For 64-bit images, every eight bytes represents one pixel.

You can use the image BitsPerPixel property with integer math to calculate the number of bytes needed for a particular number of pixels. For example

NumberOfBytes = Image.BitsPerPixel * (Image.Width * Image.Height + 7) / 8;

Return Value

The number of bytes copied.

Remarks

By using this low-level method to get any part of a row, you can write a procedure that accesses a single pixel or a rectangular area within the image.

This method accepts an offset parameter ( column) in pixels and a length ( bufferCount) in bytes. Therefore, you must consider the bits per pixel of the image when specifying these parameters. The rules are listed in the following table:

Bits Per Pixel Column Offset (in Pixels) Bytes to Get
1 Must be a multiple of 8 (such as 0, 8, or 16). Can be any number up to the end of the row. Consider that there are 8 pixels per byte.
4 Must be an even number (such as 0, 2, or 4). Can be any number up to the end of the row. Consider that there are 2 pixels per byte.
8 Can be any column within the image. Can be any number up to the end of the row. Consider that there is 1 pixel per byte.
16 Can be any column within the image. Must be a multiple of 2 (such as 2, 4, or 6), because there are 2 bytes per pixel.
24 Can be any column within the image. Must be a multiple of 3 (such as 3, 6, or 9), because there are 3 bytes per pixel.
32 Can be any column within the image. Must be a multiple of 4 (such as 4, 8, or 12), because there are 4 bytes per pixel.

The image memory must be locked when you use this method. Normally, you can call Access to lock the memory before starting an operation that uses this method. Then call Release when the operation is finished.

Color order is determined by the Order property of the RasterImage object. This value can be RasterByteOrder.Rgb, RasterByteOrder.Bgr, or RasterByteOrder.Romm.

RasterByteOrder.Gray is only valid for 12 and 16-bit grayscale images. Support for 12 and 16-bit grayscale images is only available in the Document/Medical Imaging editions.

For more information, refer to Introduction to Image Processing With LEADTOOLS.

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools Assembly